home *** CD-ROM | disk | FTP | other *** search
/ Inside Mac Games Volume 3 #12 / IMG 33 Dec 1995.iso / Demos / Calliope / Calliope v1 Slideshow / Calliope v1 Slideshow.rsrc / STR#_5000.txt < prev    next >
Text File  |  1995-12-06  |  1KB  |  144 lines

  1. then
  2.  
  3. send
  4.  
  5. return
  6.  
  7. repeat
  8.  
  9. pass
  10.  
  11. on
  12.  
  13. next
  14.  
  15. if
  16.  
  17. global
  18.  
  19. function
  20.  
  21. exit
  22.  
  23. end
  24.  
  25. else
  26.  
  27. do
  28.  
  29. --
  30.  
  31. repeat with...=repeat with | = xxx to xxx
  32.  
  33. end repeat
  34.  
  35. repeat while...=repeat while |
  36.  
  37. end repeat
  38.  
  39. repeat until..=repeat until |
  40.  
  41. end repeat
  42.  
  43. repeat for...=repeat for | times
  44.  
  45. end repeat
  46.  
  47. repeat ...=repeat
  48. |
  49. end repeat
  50.  
  51. on startUp...=on startUp
  52. |
  53. end startUp
  54.  
  55. on openWindow...=on openWindow
  56. |
  57. end openWindow
  58.  
  59. on openProject...=on openProject
  60. |
  61. end openProject
  62.  
  63. on openCard...=on openCard
  64. |
  65. end openCard
  66.  
  67. on openBackground...=on openBackground
  68. |
  69. end openBackground
  70.  
  71. on mouseUp...=on mouseUp
  72. |
  73. end mouseUp
  74.  
  75. on mouseStillDown=on mouseStillDown
  76. |
  77. end mouseStillDown
  78.  
  79. on mouseDown...=on mouseDown
  80. |
  81. end mouseDown
  82.  
  83. on idle...=on idle
  84. |
  85. end idle
  86.  
  87. on closeWindow...=on closeWindow
  88. |
  89. end closeWindow
  90.  
  91. on closeProject...=on closeProject
  92. |
  93. end closeProject
  94.  
  95. on closeCard...=on closeCard
  96. |
  97. end closeCard
  98.  
  99. on closeBackground...=on closeBackground
  100. |
  101. end closeBackground
  102.  
  103. on ...=on xxx
  104. |
  105. end xxx
  106.  
  107. lockscreen...=set lockscreen to true
  108. |
  109. set lockscreen to false
  110.  
  111. lockmessages...=set lockmessages to true
  112. |
  113. set lockmessages to false
  114.  
  115. lockmenus...=set lockmenus to true
  116. |
  117. set lockmenus to false
  118.  
  119. switch...case...end=switch |
  120. case
  121. xxx
  122. end switch
  123.  
  124. if...then=if | then xxx 
  125.  
  126. if...then...end=if | then
  127. xxx
  128. end if
  129.  
  130. if...then...else=if | then
  131. xxx
  132. else xxx
  133.  
  134. if...then...else...end=if | then
  135. xxx
  136. else
  137. xxx
  138. end if
  139.  
  140. function...=function xxx
  141. |
  142. end xxx
  143.  
  144.